home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / UTILITY1 / EDOS365D.ZIP / EDOS365D.EXE / EDOS / E704KBAT.BAT < prev    next >
DOS Batch File  |  1993-01-31  |  648b  |  21 lines

  1. @echo off
  2. IF ERRORLEVEL 1 goto err
  3. echo This is a sample 704 k batch file (%0).
  4. echo Use it as a template to create your own batch files to start
  5. echo oversize DOS sessions and then execute a batch file.
  6. echo .
  7. echo Note the use of percent COMSPEC percent.
  8. echo .
  9. echo 704k of memory has been added, %COMSPEC% will now be run.
  10. echo Be sure to examine the PIF file name %0, but ".PIF",
  11. echo to see how to setup the command and optional parameter lines.
  12. goto ok
  13. :err
  14. echo The oversize memory has failed to allocate
  15. :ok
  16. rem the ISWIN command is a workaround to fix a false error message 
  17. rem from being displayed.
  18. iswin
  19. %COMSPEC%
  20.  
  21.